Exemplo n.º 1
0
        public Player(AController controller)
        {
            m_started = false;
            m_controller = controller;
            m_currentObject = null;
            m_stopWatch = new Stopwatch();
            m_timeOffset = new TimeSpan(0);
            m_hasBeenActed = new List<bool>();
            m_delta = new Stopwatch();

            m_actors = new List<osu.HitActor>();

            DoubleTime = false;
            m_lastActId = -1;
        }
Exemplo n.º 2
0
        public Player(AController controller)
        {
            m_started       = false;
            m_controller    = controller;
            m_currentObject = null;
            m_stopWatch     = new Stopwatch();
            m_timeOffset    = new TimeSpan(0);
            m_hasBeenActed  = new List <bool>();
            m_delta         = new Stopwatch();

            m_actors = new List <osu.HitActor>();

            DoubleTime  = false;
            m_lastActId = -1;
        }