diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/XLevelBaseTask.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/XLevelBaseTask.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/XLevelBaseTask.cs b/Client/Assets/Scripts/XMainClient/XLevelBaseTask.cs new file mode 100644 index 00000000..07b3f7b1 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/XLevelBaseTask.cs @@ -0,0 +1,21 @@ +using System;
+
+namespace XMainClient
+{
+ internal class XLevelBaseTask
+ {
+ public int _id;
+
+ protected XLevelSpawnInfo _spawner;
+
+ public XLevelBaseTask(XLevelSpawnInfo ls)
+ {
+ this._spawner = ls;
+ }
+
+ public virtual bool Execute(float time)
+ {
+ return true;
+ }
+ }
+}
|