fixing git repo
This commit is contained in:
parent
20cb5a12f8
commit
52b5a8ee95
19 changed files with 106 additions and 10712 deletions
9
games/forespend/src/client/client.cpp
Normal file
9
games/forespend/src/client/client.cpp
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
#include "client.h"
|
||||
client::client(){}
|
||||
void client::boot() {}
|
||||
void client::draw() {}
|
||||
void client::exit() {}
|
||||
void client::tick() {}
|
||||
|
||||
|
||||
|
||||
14
games/forespend/src/client/client.h
Normal file
14
games/forespend/src/client/client.h
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#pragma once
|
||||
#include <incmgr.h>
|
||||
|
||||
class client :public program{
|
||||
public:
|
||||
|
||||
const char* CONF() final{return "client.tdf";}
|
||||
client();
|
||||
void boot() override;
|
||||
void tick() override;
|
||||
void draw() override;
|
||||
void exit() override;
|
||||
|
||||
};
|
||||
11
games/forespend/src/main.cpp
Normal file
11
games/forespend/src/main.cpp
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#include <incmgr.h>
|
||||
|
||||
inline const char* COMMONCONFIG(){return "common.tdf";}
|
||||
tiny::ErrorLevel tiny::level{6};
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
tiny::startup("forespend","0.03g-rewrite");
|
||||
if (argc>1) {
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue