15 satır
270 B
C
15 satır
270 B
C
#ifndef LOGIC_H_
|
|
#define LOGIC_H_
|
|
|
|
#include "state.h"
|
|
|
|
void initLogic();
|
|
void ifCmd(struct State* state);
|
|
void elseCmd(struct State* state);
|
|
void thenCmd(struct State* state);
|
|
void beginCmd(struct State* state);
|
|
void untilCmd(struct State* state);
|
|
|
|
|
|
|
|
#endif // LOGIC_H_
|