CSEngine
Loading...
Searching...
No Matches
SISComponent.h
1#pragma once
2
3namespace CSE {
5 public:
6 SISComponent() = default;
7
8 SISComponent(const SISComponent& src) = default;
9
10 virtual ~SISComponent() = default;
11
12 virtual void Start() = 0;
13
14 virtual void Init() = 0;
15
16 virtual void Tick(float elapsedTime) = 0;
17 };
18}