Skip to content

Commit

Permalink
Cleaned TestState
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisCorvers committed Nov 20, 2020
1 parent ce1a295 commit 0d2ab9e
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions Chess/STest.h
Original file line number Diff line number Diff line change
@@ -1,22 +1,17 @@
#pragma once
#include "BaseState.hpp"
#include "StateManager.h"
#include "NetServer.hpp"
#include "NetClient.hpp"



class STest : public BaseState
{
private:
NetServer m_server;
NetClient m_client;
NetClient m_newClient;


public:
STest(StateManager& stateManager) :
BaseState(stateManager), m_server(1001)
{

}
BaseState(stateManager)
{ }

virtual ~STest() {};

Expand Down

0 comments on commit 0d2ab9e

Please sign in to comment.