Core/GameObject: Implement GAMEOBJECT_TYPE_NEW_FLAG_DROP

Port From (https://github.com/TrinityCore/TrinityCore/commit/3cfc27f5ca81402ed41973a0206838e7a0352070)
This commit is contained in:
hondacrx
2023-09-04 13:28:15 -04:00
parent 07a2dd9859
commit b74cdf643f
4 changed files with 159 additions and 11 deletions
@@ -195,4 +195,14 @@ namespace Framework.Constants
Moving,
WaitingOnPauseWaypoint
}
// enum for GAMEOBJECT_TYPE_NEW_FLAG
// values taken from world state
public enum FlagState
{
InBase = 1,
Taken,
Dropped,
Respawning
}
}