Migrated to TTP.

This commit is contained in:
Ben Markendorf 2026-03-19 22:26:34 +01:00
commit efc4bc9aa4
10 changed files with 40 additions and 40 deletions

View file

@ -1,9 +1,9 @@
use crate::communities::{community::Community, interactables::interactable::Interactable};
use async_trait::async_trait;
use epsilon_core::CommunicationValue;
use json::JsonValue;
use std::any::Any;
use std::sync::Arc;
use ttp_core::CommunicationValue;
use uuid::Uuid;
pub struct Category {

View file

@ -1,9 +1,9 @@
use crate::communities::community::Community;
use async_trait::async_trait;
use epsilon_core::CommunicationValue;
use json::JsonValue;
use std::any::Any;
use std::sync::Arc;
use ttp_core::CommunicationValue;
use uuid::Uuid;
pub type InteractableFactory = fn() -> Box<dyn Interactable>;

View file

@ -7,11 +7,11 @@ use crate::{
util::file_util::{get_children, load_file, save_file},
};
use async_trait::async_trait;
use epsilon_core::{CommunicationType, CommunicationValue, DataTypes};
use json::{JsonValue, array, object};
use std::fs;
use std::sync::Arc;
use std::{any::Any, collections::HashMap};
use ttp_core::{CommunicationType, CommunicationValue, DataTypes};
use uuid::Uuid;
pub struct TextChat {
id: Uuid,