// CSE 142, Autumn 2010, Marty Stepp // This is another silly example of a class. // A WoW (World of Warcraft) character keeps track of various data. // These objects don't have any behavior (methods). public class WoWCharacter { String race; String name; int level; int gold; }