-
-
Save todorok1/774d52a7bd72d36484df3df83669f17b to your computer and use it in GitHub Desktop.
FindAnyObjectByTypeの確認で使用する派生クラス
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using UnityEngine; | |
| public class DerivedRaichu : BasePikachu | |
| { | |
| public override void ShowMessage() | |
| { | |
| Debug.Log("ライチュウ!"); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment