OldBlueWater/BlueWater/Assets/02.Scripts/Utility/GlobalValue.cs
2024-04-23 02:52:54 +09:00

34 lines
699 B
C#

// ReSharper disable once CheckNamespace
namespace BlueWaterProject
{
public class GlobalValue
{
public const float MINIMUM_STOP_DISTANCE = 0.05f;
public const float MAXIMUM_STOP_DISTANCE = 1.5f;
public enum Food
{
NONE = -1,
KING_CRAB,
JELLYFISH,
ONION,
TOMATO,
SCALLION,
CLAM,
SALT,
CHILI_POWDER,
DINOSAUR_EGG,
DINOSAUR_MEAT,
BEER,
WINE
}
public enum InIslandPlayerMode
{
NONE = -1,
ONLY_PLAYER,
CREWMATE
}
}
}