mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-05 09:28:04 +00:00
434248167b
This was SVN commit r7535.
10 lines
236 B
JavaScript
10 lines
236 B
JavaScript
function TestScript1_DestroyEntity() {}
|
|
|
|
TestScript1_DestroyEntity.prototype.GetX = function()
|
|
{
|
|
Engine.DestroyEntity(10);
|
|
return 0;
|
|
};
|
|
|
|
Engine.RegisterComponentType(IID_Test1, "TestScript1_DestroyEntity", TestScript1_DestroyEntity);
|