GameObjects
Began to add GameObjects, starting with the player.
This commit is contained in:
8
PhysicsComponent.h
Normal file
8
PhysicsComponent.h
Normal file
@@ -0,0 +1,8 @@
|
||||
#pragma once
|
||||
|
||||
class PhysicsComponent
|
||||
{
|
||||
public:
|
||||
virtual ~PhysicsComponent() {};
|
||||
virtual void Update() = 0;
|
||||
};
|
||||
Reference in New Issue
Block a user