import sys
sys.path.insert(0, '../../sdks/python/generated')
from app import App
from world import World
from entity import Entity
import time as time_module
def main():
print("🎮 Windjammer Python SDK - Hello World")
print("=" * 50)
app = App()
print("✓ Created App")
world = World()
print("✓ Created World")
player = Entity()
print(f"✓ Created Player Entity (ID: {player.id if hasattr(player, 'id') else 'N/A'})")
def game_loop():
pass
app.add_system(game_loop)
print("✓ Added game loop system")
print("\n🎉 Hello World complete!")
print("Note: This is a stub example. Full implementation requires FFI integration.")
if __name__ == '__main__':
main()