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