blob: 742d87216505b962e442578a03b2f399a6b8b018 (
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
26
27
28
|
#ifndef __AE_SCENE_H__
#define __AE_SCENE_H__
#include "FileSystem/Asset.h"
#include "Containers/Vector.hpp"
#include "GameObject.h"
namespace AsuraEngine
{
///
/// Ϸ
///
class Scene final : public Filesystem::Asset
{
public:
//
private:
Containers::Vector<GameObject*> mGameObjects;
};
}
#endif
|