-
-
Save todorok1/63efcb61c31e28d5dde2b3b16b94e5d7 to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第107回 キャラクターの移動に関するインタフェース
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
| namespace SimpleRpg | |
| { | |
| /// <summary> | |
| /// キャラクターの移動に関するインタフェースです。 | |
| /// </summary> | |
| public interface ICharacterMoveCallback | |
| { | |
| /// <summary> | |
| /// キャラクターの移動が完了したことを通知するコールバックです。 | |
| /// </summary> | |
| void OnFinishedMove(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment