[Main page] [Overview]     /struct /task

SYNOPSIS
struct Task;

FILE
/kernel/types.c

DEFINITION
A structure defining a task which a living can perform
public struct Task {
string desc;
int flag;
closure begin;
closure end;
int fp;
int duration;
mixed args;
int begintime;
int runonce;
string* required_bodyparts;
};