2017-05-04 22:10:39 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace rabi_splitter_WPF
|
|
|
|
|
{
|
|
|
|
|
enum GameStatus
|
|
|
|
|
{
|
|
|
|
|
INGAME,
|
|
|
|
|
MENU
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class RabiRibiState
|
|
|
|
|
{
|
|
|
|
|
public GameStatus gameStatus = GameStatus.MENU;
|
2017-05-04 22:42:52 +08:00
|
|
|
|
public int lastValidMusicId = -1;
|
2017-05-04 22:10:39 +08:00
|
|
|
|
}
|
|
|
|
|
}
|