Skip to content

Instantly share code, notes, and snippets.

@devbyray
Created January 31, 2020 09:12
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 devbyray/1bd3750c5c2e6f629aa4d6383a655594 to your computer and use it in GitHub Desktop.
Save devbyray/1bd3750c5c2e6f629aa4d6383a655594 to your computer and use it in GitHub Desktop.
class Hobbit extends Character {
public height: number = 1
public width: number = 2
public weight: number = 40
public type: CharacterType = CharacterType.HOBBIT
constructor() {
super()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment