C# Class GameFramework.GlobalData

Exibir arquivo Open project: dreamanlan/CSharpGameFramework

Public Methods

Method Description
AddFloat ( string key, float val ) : void
AddInt ( string key, int val ) : void
AddStr ( string key, string val ) : void
Clear ( ) : void
GetFloat ( string key ) : float
GetInt ( string key ) : int
GetStr ( string key ) : string
RemoveFloat ( string key ) : void
RemoveInt ( string key ) : void
RemoveStr ( string key ) : void

Method Details

AddFloat() public method

public AddFloat ( string key, float val ) : void
key string
val float
return void

AddInt() public method

public AddInt ( string key, int val ) : void
key string
val int
return void

AddStr() public method

public AddStr ( string key, string val ) : void
key string
val string
return void

Clear() public method

public Clear ( ) : void
return void

GetFloat() public method

public GetFloat ( string key ) : float
key string
return float

GetInt() public method

public GetInt ( string key ) : int
key string
return int

GetStr() public method

public GetStr ( string key ) : string
key string
return string

RemoveFloat() public method

public RemoveFloat ( string key ) : void
key string
return void

RemoveInt() public method

public RemoveInt ( string key ) : void
key string
return void

RemoveStr() public method

public RemoveStr ( string key ) : void
key string
return void