hyades.level.Level.Level C# (CSharp) Method

Level() public method

public Level ( ) : System
return System
        public Level()
        {
            this.entities = new List<Entity>();
            this.physics = new Physics();
            this.plane = new Plane(0, 0, -1, 0);

            this.hint_logic = new HintBubblesLogic(10);

            physics.on_penetration = penetration;
            physics.on_collision = collision;
        }