This commit is contained in:
Vladimir Koshevarov
2023-03-15 18:05:32 +02:00
parent fcf8701322
commit 39ce016c1e
42 changed files with 8260 additions and 602 deletions
+12
View File
@@ -0,0 +1,12 @@
using System;
using UnityEngine;
public class OnSelectedObjectChangedEventArgs : EventArgs
{
public BaseInteractableObject SelectedObject;
}
public class OnPlayerMovesEventArgs : EventArgs
{
public Vector3 PointToMove;
}