OldBlueWater/BlueWater/Assets/02.Scripts/Utility/GlobalValue.cs

34 lines
705 B
C#
Raw Normal View History

2023-08-31 06:46:13 +00:00
// ReSharper disable once CheckNamespace
namespace BlueWaterProject
2023-08-16 05:40:33 +00:00
{
2023-08-31 06:46:13 +00:00
public class GlobalValue
2023-08-16 05:40:33 +00:00
{
public const float MINIMUM_STOP_DISTANCE = 0.05f;
2023-10-17 07:31:10 +00:00
public const float MAXIMUM_STOP_DISTANCE = 1.5f;
public enum FoodOnHand
2023-08-31 06:46:13 +00:00
{
NONE = -1,
KING_CRAB,
JELLYFISH,
ONION,
TOMATO,
SCALLION,
CLAM,
SALT,
CHILI_POWDER,
DINOSAUR_EGG,
2024-01-22 03:06:16 +00:00
DINOSAUR_MEAT,
BEER,
WINE
2023-08-31 06:46:13 +00:00
}
public enum InIslandPlayerMode
{
NONE = -1,
ONLY_PLAYER,
CREWMATE
}
2023-08-16 05:40:33 +00:00
}
}