Skip to content

Instantly share code, notes, and snippets.

@everettcaleb
Created December 24, 2014 02:08
Show Gist options
  • Save everettcaleb/31e0099c68580df62b8f to your computer and use it in GitHub Desktop.
Save everettcaleb/31e0099c68580df62b8f to your computer and use it in GitHub Desktop.
Identifier Enumeration Example
#pragma once
#ifndef INCLUDE_PHOENIX_EVID_H
#define INCLUDE_PHOENIX_EVID_H
enum EVID : unsigned int {
EVID_TICK = 1,
EVID_SWITCH_TO_FOREGROUND = 2,
EVID_SWITCH_TO_BACKGROUND = 3
};
#endif //INCLUDE_PHOENIX_EVID_H
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment