2022-01-14 15:36:34 +01:00

20 lines
309 B
C#

/*
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Passer {
public class PlayerSelector : MonoBehaviour {
#if pHUMANOID
public enum PlayerType {
Pawn,
Humanoid
}
public PlayerType playerType;
#endif
}
}
*/