Skip to content

Instantly share code, notes, and snippets.

@TheAllenChou
Created May 8, 2019 05:01
Show Gist options
  • Save TheAllenChou/0df6bfa0cb2dcb35386358cf6d047861 to your computer and use it in GitHub Desktop.
Save TheAllenChou/0df6bfa0cb2dcb35386358cf6d047861 to your computer and use it in GitHub Desktop.
var table = new LookupTable();
var pistol =
new WeaponEntry
(
name = "pistol",
damage = 10
);
var shotgun =
new WeaponEntry
(
name = "shotgun",
damage = 50
);
table.Add(pistol);
table.Add(shotgun);
ExportData(table, "weapon-damage-table");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment