Initial Commit
This commit is contained in:
commit
5dc0cf584c
3351 changed files with 51753 additions and 0 deletions
23
Terraria/Tile.cs
Normal file
23
Terraria/Tile.cs
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
namespace Terraria
|
||||
{
|
||||
using System;
|
||||
|
||||
public class Tile
|
||||
{
|
||||
public bool active;
|
||||
public bool checkingLiquid;
|
||||
public byte frameNumber;
|
||||
public short frameX;
|
||||
public short frameY;
|
||||
public bool lava;
|
||||
public bool lighted;
|
||||
public byte liquid;
|
||||
public bool skipLiquid;
|
||||
public byte type;
|
||||
public byte wall;
|
||||
public byte wallFrameNumber;
|
||||
public byte wallFrameX;
|
||||
public byte wallFrameY;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue