mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 07:10:53 -04:00
12 lines
127 B
C++
12 lines
127 B
C++
#ifndef TIMEKEEPER_H
|
|
#define TIMEKEEPER_H
|
|
|
|
#include "common.h"
|
|
|
|
class Timekeeper {
|
|
public:
|
|
s32 getTime() const;
|
|
};
|
|
|
|
#endif
|