blob: b081fff0a7f9d3e6d616cebcc7f991bec5af2067 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef __LOG_BLOCK_H__
#define __LOG_BLOCK_H__
namespace Art
{
class Block
{
public:
Block();
~Block();
private:
float mMoveSpeed;
};
}
#endif
|