13 lines
154 B
C
13 lines
154 B
C
#ifndef ENGINE_H
|
|
#define ENGINE_H
|
|
|
|
#pragma once
|
|
#include <raylib.h>
|
|
#include <math.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "entity.h"
|
|
|
|
#endif
|