Skip to content

Instantly share code, notes, and snippets.

@solkar
Created August 11, 2013 09:16
Show Gist options
  • Save solkar/6204122 to your computer and use it in GitHub Desktop.
Save solkar/6204122 to your computer and use it in GitHub Desktop.
Class to exchange damage info
public class DamageInfo {
var damage : int;
var code : String;
function DamageInfo (d : int, s : String) {
damage = d;
code = s;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment