This website works better with JavaScript
Home
Explore
Sign In
alaah
/
ld46
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
43b81fe2a4
Branches
Tags
master
ld46
/
include
/
IEntity.hpp
IEntity.hpp
84 B
History
Raw
1
2
3
4
5
6
#pragma once
class IEntity {
public:
virtual void update(float delta) = 0;
};