Some random small projects i made using https://github.com/willmexe/Game-Engine-CS
1using Proj.Modules.Input;
2using Proj.Modules.Ui;
3using Proj.Modules.Debug;
4using Proj.Modules.Graphics;
5using System.Collections.Generic;
6using SDL2;
7using System;
8
9namespace Proj.Game {
10 public class modding_test : scene {
11
12 public modding_test() {
13
14 }
15
16 public override void on_load() {
17
18 }
19
20 public override void update() {
21
22 }
23
24 public override void render() {
25
26 }
27 }
28}