mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-29 16:37:59 +01:00
11 lines
145 B
C#
11 lines
145 B
C#
|
using System;
|
||
|
using UnityEngine;
|
||
|
|
||
|
[Serializable]
|
||
|
public class FieWaveObject
|
||
|
{
|
||
|
public Vector3 position;
|
||
|
|
||
|
public FieGameCharacter spawnObject;
|
||
|
}
|