DRLA-RPG/ZScript/Base/Player.zs

21 lines
227 B
Plaintext
Raw Normal View History

2019-04-05 19:02:56 -07:00
class RLBasePlayer : PlayerPawn;
RLStats Stats;
int Medikit;
int MedikitMax;
override void PostBeginPlay()
{
Super.PostBeginPlay();
Stats.Init();
MedikitMax = 100;
}
override void Tick()
{
Super.Tick();
}