rename LuaPlayer.hpp to LuaWebSocket.h

This commit is contained in:
Benjamin Sergeant
2020-04-28 18:37:19 -07:00
parent 755493eaf3
commit a040ff06e8
3 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,4 @@
#ifndef LUAPLAYER_HPP
#define LUAPLAYER_HPP
#pragma once
#include <iostream>
#include <string>
@ -89,5 +88,3 @@ int luaopen_Player(lua_State* L)
);
return 1;
}
#endif // LUAPLAYER_HPP

View File

@ -8,7 +8,7 @@ extern "C"
}
#include "functions.hpp"
#include "LuaPlayer.hpp"
#include "LuaWebSocket.h"
int main()
{
@ -24,4 +24,3 @@ int main()
luaL_dofile(L, "ia.lua");
lua_close(L);
}