Cogs.Core
Source
Resources
AnimationManager.h
1
#pragma once
2
3
#include "ResourceManager.h"
4
5
#include "Animation.h"
6
7
namespace
Cogs
8
{
9
namespace
Core
10
{
11
struct
AnimationLoadInfo
:
public
ResourceLoadInfoBase
12
{
13
14
};
15
16
class
COGSCORE_DLL_API
AnimationManager
:
public
ResourceManager
<Animation, AnimationLoadInfo>
17
{
18
public
:
19
AnimationManager
(
Context
* context) :
ResourceManager
(context) {}
20
~AnimationManager
();
21
22
void
initialize()
override
;
23
24
void
handleLoad(
AnimationLoadInfo
* loadInfo)
override
;
25
};
26
}
27
}
Cogs::Core::AnimationManager
Definition:
AnimationManager.h:17
Cogs::Core::Context
A Context instance contains all the services, systems and runtime components needed to use Cogs.
Definition:
Context.h:83
Cogs::Core::ResourceManager
The generic resource manager provides a base implementation for specialized resource managers to buil...
Definition:
ResourceManager.h:76
Cogs
Contains all Cogs related functionality.
Definition:
FieldSetter.h:23
Cogs::Core::AnimationLoadInfo
Definition:
AnimationManager.h:12
Cogs::Core::ResourceLoadInfoBase
Definition:
ResourceLoadInfo.h:17
Generated by
1.9.6