00001 /* $Id: ai_accounting.hpp 15060 2009-01-13 15:44:36Z smatz $ */ 00002 00005 #ifndef AI_ACCOUNTING_HPP 00006 #define AI_ACCOUNTING_HPP 00007 00008 #include "ai_object.hpp" 00009 00021 class AIAccounting : public AIObject { 00022 public: 00023 static const char *GetClassName() { return "AIAccounting"; } 00024 00031 AIAccounting(); 00032 00037 ~AIAccounting(); 00038 00043 Money GetCosts(); 00044 00048 void ResetCosts(); 00049 00050 private: 00051 Money last_costs; 00052 }; 00053 00054 #endif /* AI_ACCOUNTING_HPP */