Files
OpenArena/src/player.cpp
2003-10-15 00:57:23 -04:00

24 lines
277 B
C++

#include "../include/player.h"
void PLAYER::Load()
{
}
void PLAYER::Save()
{
}
void PLAYER::AddItem(unsigned int item)
{
// inventory = inventory | item;
}
void PLAYER::RemoveItem(unsigned int item)
{
// inventory = inventory & ~item;
}
void PLAYER::CreateCharacter()
{
}