view ppe/chara_state30.cc @ 70:cee55c8365e9 default tip

fix
author Kazuma
date Thu, 19 May 2016 18:52:26 +0900
parents 6989f8cb0259
children 978097c6427a
line wrap: on
line source

#include "task_base.h"
#include "task_object.h"

SchedDefineTask1(State30, state30);

static int
state30(SchedTask *smanager, void *rbuf, void *wbuf)
{
    CHARACTER *p = (CHARACTER*)smanager->get_input(rbuf, 0);

    p->x = p->x - 32;
    p->y = p->y;

    p->task = STATE30;
    smanager->swap();
    return 0;
}