1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-30 08:57:00 +02:00
vcmi/tools/Wpasujbud/data.h
Michał W. Urbańczyk 34f791a0bf * moved tools to the tools Folder
* added Wpasujbud tool.
2008-01-19 20:24:01 +00:00

12 lines
316 B
C

#pragma once
public ref class CBuildingData
{
public:
System::String^ defname;
System::Int32 ID, x, y;
System::Int32 townID;
virtual System::String^ ToString()override
{
return townID.ToString() + L" " + ID.ToString() + L" " + defname + L" " + x.ToString() + L" " + y.ToString() + L"\n";
}
};