Skip to content

Instantly share code, notes, and snippets.

@glitchersgames
Last active June 29, 2016 15:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save glitchersgames/d2cc275429cf483ca657a712720f738b to your computer and use it in GitHub Desktop.
Save glitchersgames/d2cc275429cf483ca657a712720f738b to your computer and use it in GitHub Desktop.
struct PlayerDef
{
string m_Name;
Color m_Color;
public PlayerDef( string name, Color color )
{
m_Name = name;
m_Color = color;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment