Pascal Serrarens 17741d862a First commit
2022-01-12 10:50:57 +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
}
}
*/