started writing down some notes
This commit is contained in:
parent
f0e92638af
commit
22f52c7d63
|
@ -15,5 +15,9 @@
|
|||
<option name="USE_TAB_CHARACTER" value="true" />
|
||||
</indentOptions>
|
||||
</codeStyleSettings>
|
||||
<codeStyleSettings language="Markdown">
|
||||
<option name="RIGHT_MARGIN" value="60" />
|
||||
<option name="WRAP_ON_TYPING" value="1" />
|
||||
</codeStyleSettings>
|
||||
</code_scheme>
|
||||
</component>
|
|
@ -0,0 +1,19 @@
|
|||
# Modules
|
||||
## Graphics Backends
|
||||
### Opengl (simple)
|
||||
Just a basic oldschool opengl backend. Not about
|
||||
performance, just about simple implementation. Acting as
|
||||
a proof of concept, and a fallback backend.
|
||||
## Networking
|
||||
### Message style
|
||||
Serialise class, send over network in binary form.
|
||||
### Replication style
|
||||
In style of unreal engine 1-3, or enet. Figure out some
|
||||
sort of class decoration for automatic replication?
|
||||
|
||||
# Todo
|
||||
## Tileset
|
||||
Cut image in software in parts, let texture atlas handle
|
||||
everything, return a List<ITexture>
|
||||
## Text Rendering
|
||||
## Gui Toolkit
|
Loading…
Reference in New Issue