Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created January 29, 2021 11:40
Embed
What would you like to do?
継承のサンプル
/// <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