21 lines
172 B
C++
21 lines
172 B
C++
#pragma once
|
|
#include <SDL2/SDL.h>
|
|
|
|
#ifndef ACTORS_H
|
|
#define ACTORS_H
|
|
|
|
class Actors
|
|
{
|
|
private:
|
|
|
|
|
|
public:
|
|
// Constructor
|
|
Actors();
|
|
|
|
// Destructor
|
|
~Actors();
|
|
};
|
|
|
|
#endif
|