임시처리
This commit is contained in:
parent
e4a23dd190
commit
fce0c1c131
@ -8,7 +8,7 @@ public class RestaurantCharacter : MonoBehaviour, IGameCharacter, IInteractor
|
|||||||
{
|
{
|
||||||
private void Start()
|
private void Start()
|
||||||
{
|
{
|
||||||
TODO_IMPLEMENT_ME();
|
//TODO_IMPLEMENT_ME();
|
||||||
// TODO : Add event solvers dynamically
|
// TODO : Add event solvers dynamically
|
||||||
for (int i = (int)InteractionType.Count; i < (int)InteractionType.Count; i++)
|
for (int i = (int)InteractionType.Count; i < (int)InteractionType.Count; i++)
|
||||||
{
|
{
|
||||||
@ -23,7 +23,8 @@ private void Start()
|
|||||||
|
|
||||||
public GameObject GetInteractorGameObject()
|
public GameObject GetInteractorGameObject()
|
||||||
{
|
{
|
||||||
return TODO_IMPLEMENT_ME;
|
// TODO : TODO_IMPLEMENT_ME
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -17,7 +17,8 @@ public void Invoke(RestaurantInteractionEvent evt)
|
|||||||
|
|
||||||
public GameObject GetInteractorGameObject()
|
public GameObject GetInteractorGameObject()
|
||||||
{
|
{
|
||||||
return TODO_IMPLEMENT_ME;
|
// TODO : TODO_IMPLEMENT_ME
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -6,7 +6,8 @@ public class RestaurantManagementEventSolver : MonoBehaviour, IInteractionSolver
|
|||||||
{
|
{
|
||||||
public bool ExecuteInteraction(IInteractor interactor, ScriptableObject interactionPayloadSo = null)
|
public bool ExecuteInteraction(IInteractor interactor, ScriptableObject interactionPayloadSo = null)
|
||||||
{
|
{
|
||||||
return TODO_IMPLEMENT_ME;
|
// TODO : TODO_IMPLEMENT_ME
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -23,17 +23,19 @@ public bool OnInteracted(IInteractor interactor, ScriptableObject interactionPay
|
|||||||
|
|
||||||
public InteractionType GetInteractionType()
|
public InteractionType GetInteractionType()
|
||||||
{
|
{
|
||||||
return TODO_IMPLEMENT_ME;
|
// TODO : TODO_IMPLEMENT_ME
|
||||||
|
return InteractionType.None;
|
||||||
}
|
}
|
||||||
|
|
||||||
public GameObject GetInteractableGameObject()
|
public GameObject GetInteractableGameObject()
|
||||||
{
|
{
|
||||||
return TODO_IMPLEMENT_ME;
|
// TODO : TODO_IMPLEMENT_ME
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void InitializeInteraction(InteractionType interactionType)
|
public void InitializeInteraction(InteractionType interactionType)
|
||||||
{
|
{
|
||||||
TODO_IMPLEMENT_ME();
|
// TODO : TODO_IMPLEMENT_ME
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user