Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created August 17, 2020 05:05
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/d58d43f5b5ffe5a1ebc95ec462f76b9c to your computer and use it in GitHub Desktop.
Save todorok1/d58d43f5b5ffe5a1ebc95ec462f76b9c to your computer and use it in GitHub Desktop.
イベントシステムを使用してメソッドを呼び出すために使うインタフェースのサンプル
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;
/// <Summary>
/// EventSystemsで使用するインタフェースです。
/// </Summary>
public interface IEventCaller : IEventSystemHandler
{
// イベントを呼び出すメソッドです。
void EventCall();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment