40 lines
533 B
C#
40 lines
533 B
C#
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public enum EntityCacheKeys
|
|
{
|
|
Invalid,
|
|
|
|
#region Buildings
|
|
|
|
HarvesterBuildings,
|
|
|
|
HunterBuildings,
|
|
|
|
FarmBuildings,
|
|
|
|
ProducerBuildings,
|
|
|
|
ProviderBuildings,
|
|
|
|
BuildingsWithWorkers,
|
|
|
|
HouseBuildings,
|
|
|
|
StorageBuildings,
|
|
|
|
StorageRequestBuildings,
|
|
|
|
TentBuildings,
|
|
|
|
#endregion
|
|
|
|
#region Agents
|
|
|
|
HunterAgents,
|
|
|
|
CritterAgents
|
|
|
|
#endregion
|
|
}
|
|
}
|