mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 11:15:33 +00:00
14 lines
173 B
C#
14 lines
173 B
C#
|
|
namespace Cirno.Scripts;
|
|||
|
|
|
|||
|
|
public enum ItemTypes
|
|||
|
|
{
|
|||
|
|
KeycardRed,
|
|||
|
|
KeycardBlue,
|
|||
|
|
KeycardGreen,
|
|||
|
|
Ammo,
|
|||
|
|
Medkit,
|
|||
|
|
CrabBomb,
|
|||
|
|
Bomb,
|
|||
|
|
Mine,
|
|||
|
|
Battery
|
|||
|
|
}
|