rott/kf_sources/GUI2K4/Classes/SPHighScoreBase.uc
2026-07-14 20:27:09 +07:00

21 lines
577 B
Ucode

//==============================================================================
// Created on: 11/22/2003
// Base class for single player high scores
//
// Written by Ron Prestenback
// © 2003, Epic Games, Inc. All Rights Reserved
//==============================================================================
class SPHighScoreBase extends Object
abstract;
/** Menu labels of chars unlocked */
var array<string> UnlockedChars;
function UnlockChar(string char, optional string PlayerHash);
function string StoredPlayerID();
DefaultProperties
{
}