repo.or.cz
/
peakengine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
- Partly implemented client side prediction (still unstable).
[peakengine.git]
/
engine
/
include
/
core
/
Model.h
blob
da27047e24de2bc7456f487d11660de07032927b
1
2
#ifndef _MODEL_H_
3
#define _MODEL_H_
4
5
#include
"core/Object3D.h"
6
7
#include <string>
8
9
namespace
peak
10
{
11
class
Model
:
public
Object3D
12
{
13
public
:
14
Model
();
15
~
Model
();
16
17
bool
load
(
std
::
string name
,
bool
graphics
=
true
,
bool
physics
=
true
);
18
bool
destroy
(
void
);
19
20
private
:
21
};
22
}
23
24
#endif
25