Skip to content

Instantly share code, notes, and snippets.

@st4rdog
Last active December 26, 2015 00:18
Show Gist options
  • Save st4rdog/18c18cb50131b0b49416 to your computer and use it in GitHub Desktop.
Save st4rdog/18c18cb50131b0b49416 to your computer and use it in GitHub Desktop.
public class ThrowingDagger : Weapon, IThrowable {
// Overrides the default Attack() from the Weapon class
public override void Attack()
{
Throw();
}
// IThrowable
public void Throw()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment