mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 15:20:58 -04:00
98f7e90125
* Fix .data sections misidentified as .rodata by dtk dtk can't always reliably identify REL sections in its initial analysis. This is a manual fix - the list of RELs to fix was found by looking at supposed .rodata splits that contained an fBase vtable, since vtables should be in .data. This fix is required for scripted creation of REL actors based on rel .data * More consistent d/t header paths * Data fixups for parsing * Tmp actor file setup * Fixes * Set up almost all REL templates * formatting * Fix formatting
15 lines
180 B
C++
15 lines
180 B
C++
#ifndef D_SOFTWAREKEYBOARD_H
|
|
#define D_SOFTWAREKEYBOARD_H
|
|
|
|
#include <d/d_base.h>
|
|
|
|
class dSKB_c : public dBase_c {
|
|
public:
|
|
dSKB_c();
|
|
virtual ~dSKB_c();
|
|
|
|
private:
|
|
};
|
|
|
|
#endif
|