add game&rawdata

This commit is contained in:
Vasily Petrov 2026-06-17 23:06:51 +03:00
parent 0133cd976c
commit 49b34b5546
45731 changed files with 709831 additions and 0 deletions

View file

@ -0,0 +1,21 @@
---------------------------------------------------------------------
--'Helicopter
class "se_heli" (cse_alife_helicopter)
--------------------
function se_heli:__init (section) super (section)
end
function se_heli:on_register()
cse_alife_helicopter.on_register(self)
-- Ïðîâåðÿåì êàñòîìäàòó îáüåêòà íà íàëè÷èå ñòîðè àéäè.
story_objects.check_spawn_ini_for_story_id(self)
end
function se_heli:on_unregister()
unregister_story_object_by_id(self.id)
cse_alife_helicopter.on_unregister(self)
end
function se_heli:keep_saved_data_anyway()
return true
end