Created Capter2 for Test with componentbased objects
This commit is contained in:
14
Capter2/Actor.hpp
Normal file
14
Capter2/Actor.hpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
class Actor
|
||||
{
|
||||
private:
|
||||
/* data */
|
||||
public:
|
||||
Actor(/* args */);
|
||||
~Actor();
|
||||
|
||||
void Update(float);
|
||||
void Draw(SDL_Renderer *);
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user