Skip to content

Instantly share code, notes, and snippets.

@dorgonman
Last active August 23, 2017 13:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dorgonman/5c45efee5766a481c4db0d2f059eeed2 to your computer and use it in GitHub Desktop.
Save dorgonman/5c45efee5766a481c4db0d2f059eeed2 to your computer and use it in GitHub Desktop.
enum class EHorizonPlayerSortType
{
Invalidated = ( 1 << 0),
Leve = ( 1 << 1),
Power = ( 1 << 2),
Speed = ( 1 << 3),
PlaceHolder1 = ( 1 << 4),
PlaceHolder2 = ( 1 << 5),
PlaceHolder3 = ( 1 << 6),
PlaceHolder4 = ( 1 << 7),
};
void Usage(){
int flag = EHorizonPlayerSortType::Level | EHorizonPlayerSortType::Speed;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment