Files
CrystalPoint/Interface.h
T

14 lines
172 B
C++

#pragma once
class Interface
{
public:
Interface();
~Interface();
void draw(void);
void update(float deltaTime);
int crystalWidth, crystalHeight, crystalOffset;
};