Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created January 29, 2021 11:40
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 todorok1/b412a3fc018337505023741d46928bd3 to your computer and use it in GitHub Desktop.
Save todorok1/b412a3fc018337505023741d46928bd3 to your computer and use it in GitHub Desktop.
継承のサンプル
/// <Summary>
/// 犬クラスです。
/// </Summary>
public class Dog : Animal
{
protected override void()
{
Debug.Log("わん!");
}
protected override void 移動する()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment