11 lines
193 B
C#
11 lines
193 B
C#
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public struct CritterState
|
|
{
|
|
public bool IsCritter;
|
|
|
|
public int CritterDefinitionId;
|
|
|
|
public int LockId;
|
|
}
|
|
} |