blob: d078861b95f6f05bb45a025d1931ba2985b37210 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#pragma once
#include <memory>
#include "global.h"
#include "object_base.h"
using namespace std;
extern Global global;
template <typename ObjT>
shared_ptr<Object> instance_create(int x,int y){
shared_ptr<Object> ptr(new ObjT(x,y));
global.objects.push_back(ptr);
ptr->create();
return ptr;
}
void draw_text(int x,int y,const char *s);
void draw_textf(int x,int y,const char *format,...) __attribute__((format (printf, 3, 4)));
void log(const char *s);
void logf(const char *format,...) __attribute__((format (printf, 1, 2)));
|