summaryrefslogtreecommitdiff
path: root/Source/Asura/Scene.h
blob: c8737515e9fcbd0a56e2ac17862a6bf15eb63ad4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef __AE_SCENE_H__
#define __AE_SCENE_H__

#include "Containers/Vector.hpp"
#include "GameObject.h"

namespace AsuraEngine
{

    ///
    /// Ϸ
    ///
    class Scene
    {
    public: 

    private:

        Containers::Vector<GameObject*> mGameObjects;

    };

}

#endif